Added `-[NSArray validateAsPropertyList]` and `-[NSDictionary validateAsPropertyList...
[adiumx.git] / Plugins / WebKit Message View / AIPreviewChat.m
blob9da26c991791160da5f37d0ae215fb3c48312cf5
1 //
2 //  AIPreviewChat.m
3 //  Adium
4 //
5 //  Created by Evan Schoenberg on 9/21/06.
6 //
8 #import "AIPreviewChat.h"
10 @implementation AIPreviewChat
12 + (AIPreviewChat *)previewChat
14         return [self chatForAccount:nil];
17 - (void)setDateOpened:(NSDate *)inDate
19         if (dateOpened != inDate) {
20                 [dateOpened release]; 
21                 dateOpened = [inDate retain];
22     }
25 @end